All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.java.swing.event.InternalFrameAdapter

java.lang.Object
   |
   +----com.sun.java.swing.event.InternalFrameAdapter

public abstract class InternalFrameAdapter
extends Object
implements InternalFrameListener
An abstract adapter class for receiving internal frame events. The methods in this class are empty. This class exists as convenience for creating listener objects, and is functionally equivalent to the WindowAdapter class in the AWT.

See Writing a Window Listener in The Java Tutorial and The Java Class Libraries (update)

See Also:
InternalFrameEvent, InternalFrameListener, WindowListener

Constructor Index

 o InternalFrameAdapter()

Method Index

 o internalFrameActivated(InternalFrameEvent)
Invoked when an internal frame is activated.
 o internalFrameClosed(InternalFrameEvent)
Invoked when an internal frame has been closed.
 o internalFrameClosing(InternalFrameEvent)
Invoked when an internal frame is in the process of being closed.
 o internalFrameDeactivated(InternalFrameEvent)
Invoked when an internal frame is de-activated.
 o internalFrameDeiconified(InternalFrameEvent)
Invoked when an internal frame is de-iconified.
 o internalFrameIconified(InternalFrameEvent)
Invoked when an internal frame is iconified.
 o internalFrameOpened(InternalFrameEvent)
Invoked when an internal frame has been opened.

Constructors

 o InternalFrameAdapter
 public InternalFrameAdapter()

Methods

 o internalFrameOpened
 public void internalFrameOpened(InternalFrameEvent e)
Invoked when an internal frame has been opened.

 o internalFrameClosing
 public void internalFrameClosing(InternalFrameEvent e)
Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.

 o internalFrameClosed
 public void internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.

 o internalFrameIconified
 public void internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.

 o internalFrameDeiconified
 public void internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.

 o internalFrameActivated
 public void internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.

 o internalFrameDeactivated
 public void internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.


All Packages  Class Hierarchy  This Package  Previous  Next  Index